runtime.mSpanList.first (field)

24 uses

	runtime (current package)
		arena.go#L999: 		s = h.userArena.readyList.first
		mgcwork.go#L367: 		if work.wbufSpans.free.first != nil {
		mgcwork.go#L369: 			s = work.wbufSpans.free.first
		mgcwork.go#L478: 			span := work.wbufSpans.free.first
		mheap.go#L398: 	first *mspan // first span in list, or nil if none
		mheap.go#L1736: 	list.first = nil
		mheap.go#L1746: 	if list.first == span {
		mheap.go#L1747: 		list.first = span.next
		mheap.go#L1762: 	return list.first == nil
		mheap.go#L1770: 	span.next = list.first
		mheap.go#L1771: 	if list.first != nil {
		mheap.go#L1774: 		list.first.prev = span
		mheap.go#L1779: 	list.first = span
		mheap.go#L1794: 		list.first = span
		mheap.go#L1808: 	for s := other.first; s != nil; s = s.next {
		mheap.go#L1817: 		other.last.next = list.first
		mheap.go#L1818: 		list.first.prev = other.last
		mheap.go#L1819: 		list.first = other.first
		mheap.go#L1822: 	other.first, other.last = nil, nil
		stack.go#L195: 	s := list.first
		stack.go#L399: 			s = stackLarge.free[log2npage].first
		stack.go#L1246: 		for s := list.first; s != nil; {
		stack.go#L1262: 		for s := stackLarge.free[i].first; s != nil; {